:root {
  --accent: #4F46E5;
  --accent-dark: #3730a3;
  --accent-soft: #eef0ff;
  --accent-soft-dark: #312e81;
  --bg: #f8f9fb;
  --bg-dark: #0f172a;
  --text: #0f172a;
  --text-dark: #f1f5f9;
  --muted: #6b7280;
  --muted-dark: #94a3b8;
  --card-bg: #ffffff;
  --card-bg-dark: #1e293b;
  --header-bg: rgba(255, 255, 255, 0.95);
  --header-bg-dark: rgba(15, 23, 42, 0.95);
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --shadow-dark: 0 10px 25px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --border-radius: 16px;
  --basic: #10b981;
  --basic-dark: #059669;
  --advanced: #3b82f6;
  --advanced-dark: #2563eb;
  --custom: #8b5cf6;
  --custom-dark: #7c3aed;
  --success: #10b981;
  --success-dark: #059669;
  --warning: #f59e0b;
  --warning-dark: #d97706;
  --info: #3b82f6;
  --info-dark: #2563eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: var(--transition);
  overflow-x: hidden;
}

body.dark-mode {
  background: var(--bg-dark);
  color: var(--text-dark);
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

body.dark-mode header {
  background: var(--header-bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-dark);
}

.nav-wrap {
  max-width: 1280px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total-visitors {
  margin-top: 15px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

body.dark-mode nav a {
  color: var(--muted-dark);
}

nav a:hover {
  color: var(--accent);
}

nav a.active {
  color: var(--accent);
  font-weight: 600;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
  width: 50px;
  height: 26px;
  background: var(--accent-soft);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

body.dark-mode .dark-mode-toggle {
  background: var(--accent-soft-dark);
}

.dark-mode-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

body.dark-mode .dark-mode-toggle::after {
  transform: translateX(24px);
  background: #fbbf24;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--accent-soft);
}

body.dark-mode .menu-toggle:hover {
  background: rgba(79, 70, 229, 0.2);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(15px);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 99;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  flex-direction: column;
  gap: 15px;
}

body.dark-mode .mobile-menu {
  background: var(--header-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.dark-mode .mobile-menu a {
  color: var(--text-dark);
}

.mobile-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

body.dark-mode .mobile-menu a:hover {
  background: rgba(79, 70, 229, 0.2);
}

.mobile-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  margin-top: 10px;
}

body.dark-mode .mobile-controls {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Container */
.container {
  max-width: 1280px;
  margin: auto;
  padding: 32px 24px;
}

/* Button */
.btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(79, 70, 229, 0.2);
}

body.dark-mode .btn-secondary {
  background: rgba(79, 70, 229, 0.15);
  color: #a5b4fc;
  border-color: rgba(79, 70, 229, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.15);
}

/* Footer */
footer {
  margin-top: 100px;
  background: linear-gradient(145deg, var(--card-bg), #f1f5f9);
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  position: relative;
  overflow: hidden;
}

body.dark-mode footer {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  z-index: 1;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-content {
  max-width: 1280px;
  margin: auto;
  padding: 60px 24px 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent);
}

body.dark-mode .footer-column h3 {
  color: #a5b4fc;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

body.dark-mode .footer-links a {
  color: var(--muted-dark);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  color: var(--muted);
  font-size: 14px;
  position: relative;
  z-index: 2;
}

body.dark-mode .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted-dark);
}

/* Modal Kontak */
.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.contact-modal.active {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  position: relative;
}

body.dark-mode .modal-content {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--accent);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--muted);
}

body.dark-mode .breadcrumb {
  color: var(--muted-dark);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  nav, .dark-mode-toggle {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .mobile-controls .dark-mode-toggle {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }
  
  .logo-text {
    font-size: 20px;
  }
}

/* ========== HERO TENTANG ========== */
.about-hero {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: -1;
}

body.dark-mode .about-hero::before {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(15, 23, 42, 0) 50%);
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.dark-mode .about-hero h1 {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-hero-subtitle {
  font-size: 20px;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

body.dark-mode .about-hero-subtitle {
  color: var(--muted-dark);
}

/* ========== ABOUT CONTENT ========== */
.about-content {
  margin-top: 20px;
  margin-bottom: 80px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text);
}

body.dark-mode .about-content h2 {
  color: var(--text-dark);
}

.about-content p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

body.dark-mode .about-content p {
  color: var(--muted-dark);
}

/* ========== VISI MISI SECTION ========== */
.visi-misi-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.visi-card, .misi-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

body.dark-mode .visi-card,
body.dark-mode .misi-card {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.visi-card:hover,
.misi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
}

body.dark-mode .visi-card:hover,
body.dark-mode .misi-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.visi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
}

.misi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #10b981, #059669);
}

/* ========== CARD ICON ========== */
.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 24px;
}

.misi-card .card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), #ffffff);
  color: #10b981;
}

body.dark-mode .card-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(30, 41, 59, 0.5));
  color: #a5b4fc;
}

body.dark-mode .misi-card .card-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(30, 41, 59, 0.5));
  color: #10b981;
}

.visi-card h3,
.misi-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text);
}

body.dark-mode .visi-card h3,
body.dark-mode .misi-card h3 {
  color: var(--text-dark);
}

.visi-card p,
.misi-card p {
  color: var(--muted);
  line-height: 1.7;
}

body.dark-mode .visi-card p,
body.dark-mode .misi-card p {
  color: var(--muted-dark);
}

/* ========== MISI LIST ========== */
.misi-card ul {
  list-style: none;
  margin-top: 15px;
}

.misi-card ul li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.misi-card ul li i {
  color: #10b981;
  margin-top: 4px;
  font-size: 14px;
}

/* ========== COMPANY INFO SECTION ========== */
.company-info-section {
  margin-bottom: 80px;
  padding: 40px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

body.dark-mode .company-info-section {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.company-info-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--text);
  text-align: center;
}

body.dark-mode .company-info-section h2 {
  color: var(--text-dark);
}

.company-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.company-detail-card {
  padding: 25px;
  background: var(--accent-soft);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

body.dark-mode .company-detail-card {
  background: rgba(79, 70, 229, 0.1);
  border-left-color: #8b5cf6;
}

.company-detail-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent);
}

body.dark-mode .company-detail-card h3 {
  color: #a5b4fc;
}

.company-detail-card p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
}

body.dark-mode .company-detail-card p {
  color: var(--muted-dark);
}

/* ========== PSE BADGE ========== */
.pse-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
}

/* ========== SATU SEHAT LINK ========== */
.satu-sehat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: var(--transition);
}

.satu-sehat-link:hover {
  color: var(--accent-dark);
  transform: translateX(5px);
}

body.dark-mode .satu-sehat-link:hover {
  color: #a5b4fc;
}

/* ========== APPROACH SECTION ========== */
.approach-section {
  margin-bottom: 80px;
}

.approach-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--text);
}

body.dark-mode .approach-section h2 {
  color: var(--text-dark);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.approach-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

body.dark-mode .approach-card {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
  background: var(--accent-soft);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .approach-card i {
  background: rgba(79, 70, 229, 0.2);
  color: #a5b4fc;
}

.approach-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text);
}

body.dark-mode .approach-card h3 {
  color: var(--text-dark);
}

.approach-card p {
  color: var(--muted);
  line-height: 1.6;
}

body.dark-mode .approach-card p {
  color: var(--muted-dark);
}

/* ========== CONTACT SECTION (TENTANG) ========== */
.contact-section {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(145deg, var(--card-bg), var(--accent-soft));
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

body.dark-mode .contact-section {
  background: linear-gradient(145deg, var(--card-bg-dark), rgba(79, 70, 229, 0.1));
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.05);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.contact-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--text);
}

body.dark-mode .contact-section h2 {
  color: var(--text-dark);
}

.contact-section p {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}

body.dark-mode .contact-section p {
  color: var(--muted-dark);
}

/* ========== RESPONSIVE TENTANG ========== */
@media (max-width: 880px) {
  nav, .dark-mode-toggle {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 36px;
  }
  
  .about-hero-subtitle {
    font-size: 18px;
  }
  
  .about-content h2 {
    font-size: 28px;
  }
  
  .visi-misi-section {
    grid-template-columns: 1fr;
  }
  
  .approach-section h2 {
    font-size: 28px;
  }
  
  .contact-section h2 {
    font-size: 28px;
  }
  
  .contact-section {
    padding: 60px 20px;
  }
  
  .company-info-section {
    padding: 30px 20px;
  }
  
  .company-details {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .mobile-controls .dark-mode-toggle {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 32px;
  }
  
  .company-info-section h2 {
    font-size: 24px;
  }
}

/* ========== HERO PRICING ========== */
.pricing-hero {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: -1;
}

body.dark-mode .pricing-hero::before {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(15, 23, 42, 0) 50%);
}

.pricing-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.dark-mode .pricing-hero h1 {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-hero-subtitle {
  font-size: 20px;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

body.dark-mode .pricing-hero-subtitle {
  color: var(--muted-dark);
}

/* ========== FLEXIBLE PRICING SECTION ========== */
.flexible-pricing {
  background: var(--card-bg);
  /* border-radius: var(--border-radius); */
  padding: 50px 40px;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
  text-align: center;
}

body.dark-mode .flexible-pricing {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.flexible-pricing h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text);
}

body.dark-mode .flexible-pricing h2 {
  color: var(--text-dark);
}

.flexible-pricing p {
  font-size: 18px;
  color: var(--muted);
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

body.dark-mode .flexible-pricing p {
  color: var(--muted-dark);
}

/* ========== PRICING CARDS GRID ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(79, 70, 229, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.dark-mode .pricing-card {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
  border-color: rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

body.dark-mode .pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Border top warna berbeda untuk setiap tipe */
.pricing-card.basic {
  border-top: 5px solid var(--basic);
}

.pricing-card.advanced {
  border-top: 5px solid var(--advanced);
}

.pricing-card.custom {
  border-top: 5px solid var(--custom);
}

/* ========== HEADER PRICING CARD ========== */
.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
}

/* Warna icon berbeda untuk setiap paket */
.basic .pricing-icon {
  background: linear-gradient(135deg, var(--basic), var(--basic-dark));
}

.advanced .pricing-icon {
  background: linear-gradient(135deg, var(--advanced), var(--advanced-dark));
}

.custom .pricing-icon {
  background: linear-gradient(135deg, var(--custom), var(--custom-dark));
}

.pricing-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text);
}

body.dark-mode .pricing-title {
  color: var(--text-dark);
}

.pricing-subtitle {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 25px;
}

body.dark-mode .pricing-subtitle {
  color: var(--muted-dark);
}

/* ========== PRICING FEATURES ========== */
.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

body.dark-mode .pricing-features li {
  color: var(--muted-dark);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--accent);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
  margin-top: auto;
}

/* ========== PRINCIPLES SECTION ========== */
.principles-section {
  margin-bottom: 80px;
}

.principles-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--text);
}

body.dark-mode .principles-section h2 {
  color: var(--text-dark);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.principle-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

body.dark-mode .principle-item {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.principle-item:hover {
  transform: translateY(-5px);
}

.principle-item i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

.principle-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text);
}

body.dark-mode .principle-item h3 {
  color: var(--text-dark);
}

.principle-item p {
  color: var(--muted);
  line-height: 1.6;
}

body.dark-mode .principle-item p {
  color: var(--muted-dark);
}

/* ========== IMPLEMENTATION SECTION ========== */
.implementation-section {
  background: linear-gradient(145deg, var(--accent-soft), #ffffff);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  margin-bottom: 60px;
  text-align: center;
}

body.dark-mode .implementation-section {
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.1), rgba(15, 23, 42, 0.1));
}

.implementation-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--text);
}

body.dark-mode .implementation-section h2 {
  color: var(--text-dark);
}

.implementation-section p {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

body.dark-mode .implementation-section p {
  color: var(--muted-dark);
}

.implementation-section > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.implementation-section > div > div {
  padding: 20px;
}

.implementation-section > div > div i {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.implementation-section > div > div p {
  font-size: 16px;
  margin: 0;
}

/* ========== TRANSPARENCY SECTION ========== */
.transparency-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  padding: 40px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

body.dark-mode .transparency-section {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.transparency-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 40px;
}

body.dark-mode .transparency-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(30, 41, 59, 0.5));
  color: #a5b4fc;
}

.transparency-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text);
}

body.dark-mode .transparency-section h2 {
  color: var(--text-dark);
}

.transparency-section p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

body.dark-mode .transparency-section p {
  color: var(--muted-dark);
}

/* ========== CONSULTATION SECTION ========== */
.consultation-section {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(145deg, var(--card-bg), var(--accent-soft));
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

body.dark-mode .consultation-section {
  background: linear-gradient(145deg, var(--card-bg-dark), rgba(79, 70, 229, 0.1));
}

.consultation-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.05);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.consultation-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--text);
}

body.dark-mode .consultation-section h2 {
  color: var(--text-dark);
}

.consultation-section p {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}

body.dark-mode .consultation-section p {
  color: var(--muted-dark);
}

/* ========== NOTES SECTION ========== */
.notes-section {
  background: var(--accent-soft);
  border-radius: var(--border-radius);
  padding: 40px;
  margin-top: 60px;
  border-left: 5px solid var(--accent);
}

body.dark-mode .notes-section {
  background: rgba(79, 70, 229, 0.1);
  border-left-color: var(--accent);
}

.notes-section h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 24px;
}

.notes-list {
  list-style: none;
}

.notes-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

body.dark-mode .notes-list li {
  color: var(--muted-dark);
}

.notes-list i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.notes-list span {
  line-height: 1.6;
}

/* ========== RESPONSIVE HARGA ========== */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 36px;
  }
  
  .pricing-hero-subtitle {
    font-size: 18px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .flexible-pricing h2 {
    font-size: 28px;
  }
  
  .principles-section h2 {
    font-size: 28px;
  }
  
  .transparency-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .consultation-section h2 {
    font-size: 28px;
  }
  
  .consultation-section {
    padding: 60px 20px;
  }

  .mobile-controls .dark-mode-toggle {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .pricing-hero h1 {
    font-size: 32px;
  }
  
  .flexible-pricing {
    padding: 30px 20px;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
}

/* ========== HERO SECURITY ========== */
.security-hero {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.security-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255, 255, 255, 0) 50%);
  z-index: -1;
}

body.dark-mode .security-hero::before {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(15, 23, 42, 0) 50%);
}

.security-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.dark-mode .security-hero h1 {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.security-hero-subtitle {
  font-size: 20px;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

body.dark-mode .security-hero-subtitle {
  color: var(--muted-dark);
}

/* ========== SECTION HEADER ========== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text);
}

body.dark-mode .section-header h2 {
  color: var(--text-dark);
}

.section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

body.dark-mode .section-header p {
  color: var(--muted-dark);
}

/* ========== SECURITY CARDS GRID ========== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.security-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(79, 70, 229, 0.05);
  position: relative;
  overflow: hidden;
}

body.dark-mode .security-card {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
  border-color: rgba(255, 255, 255, 0.05);
}

.security-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
}

body.dark-mode .security-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ========== SECURITY CARD ICON ========== */
.security-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--accent);
  font-size: 28px;
}

body.dark-mode .security-card-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(30, 41, 59, 0.5));
  color: #a5b4fc;
}

.security-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text);
}

body.dark-mode .security-card h3 {
  color: var(--text-dark);
}

.security-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

body.dark-mode .security-card p {
  color: var(--muted-dark);
}

/* ========== SECURITY LIST ========== */
.security-list {
  list-style: none;
  margin-top: 20px;
}

.security-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

body.dark-mode .security-list li {
  color: var(--muted-dark);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.security-list li:last-child {
  border-bottom: none;
}

.security-list i {
  color: var(--success);
  font-size: 14px;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ========== SECURITY FEATURE HIGHLIGHT ========== */
.security-feature {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

body.dark-mode .security-feature {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.security-feature-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 32px;
}

body.dark-mode .security-feature-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(30, 41, 59, 0.5));
  color: #a5b4fc;
}

.security-feature-content {
  flex: 1;
}

.security-feature h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text);
}

body.dark-mode .security-feature h3 {
  color: var(--text-dark);
}

.security-feature p {
  color: var(--muted);
  line-height: 1.7;
}

body.dark-mode .security-feature p {
  color: var(--muted-dark);
}

/* ========== PRINCIPLES GRID (KEAMANAN) ========== */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.principle-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

body.dark-mode .principle-card {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.principle-card:hover {
  transform: translateY(-5px);
}

.principle-card i {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
  background: var(--accent-soft);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .principle-card i {
  background: rgba(79, 70, 229, 0.2);
  color: #a5b4fc;
}

.principle-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text);
}

body.dark-mode .principle-card h3 {
  color: var(--text-dark);
}

.principle-card p {
  color: var(--muted);
  line-height: 1.6;
}

body.dark-mode .principle-card p {
  color: var(--muted-dark);
}

/* ========== SECURITY CTA ========== */
.security-cta {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(145deg, var(--card-bg), var(--accent-soft));
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

body.dark-mode .security-cta {
  background: linear-gradient(145deg, var(--card-bg-dark), rgba(79, 70, 229, 0.1));
}

.security-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.05);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.security-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  color: var(--text);
}

body.dark-mode .security-cta h2 {
  color: var(--text-dark);
}

.security-cta p {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  line-height: 1.7;
}

body.dark-mode .security-cta p {
  color: var(--muted-dark);
}

/* ========== RESPONSIVE KEAMANAN ========== */
@media (max-width: 768px) {
  .security-hero h1 {
    font-size: 36px;
  }
  
  .security-hero-subtitle {
    font-size: 18px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
  }
  
  .security-feature {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .security-cta {
    padding: 60px 20px;
  }
  
  .security-cta h2 {
    font-size: 28px;
  }

  .mobile-controls .dark-mode-toggle {
    display: flex !important;
  }
}

@media (max-width: 480px) {
  .security-hero h1 {
    font-size: 32px;
  }
}

/* ========== HEADER WAVE ========== */
.header-wave {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
  overflow: hidden;
  z-index: -1;
}

.header-wave svg {
  width: 100%;
  height: 100%;
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  display: flex;
  background: var(--accent-soft);
  border-radius: 50px;
  padding: 4px;
  gap: 4px;
}

body.dark-mode .lang-switcher {
  background: rgba(79, 70, 229, 0.2);
}

.lang-btn {
  padding: 6px 16px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--muted);
}

body.dark-mode .lang-btn {
  color: var(--muted-dark);
}

.lang-btn.active {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* ========== DARK MODE TOGGLE (VERSI MAIN) ========== */
.dark-mode-toggle {
  width: 50px;
  height: 26px;
  background: var(--accent-soft);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

body.dark-mode .dark-mode-toggle {
  background: var(--accent-soft-dark);
}

.dark-mode-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

body.dark-mode .dark-mode-toggle::after {
  transform: translateX(24px);
  background: #fbbf24;
}

/* ========== MENU TOGGLE (VERSI MAIN) ========== */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--accent-soft);
}

body.dark-mode .menu-toggle:hover {
  background: rgba(79, 70, 229, 0.2);
}

/* ========== MOBILE MENU (VERSI MAIN) ========== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(15px);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 99;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  flex-direction: column;
  gap: 15px;
}

body.dark-mode .mobile-menu {
  background: var(--header-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.dark-mode .mobile-menu a {
  color: var(--text-dark);
}

.mobile-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

body.dark-mode .mobile-menu a:hover {
  background: rgba(79, 70, 229, 0.2);
}

.mobile-controls {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  margin-top: 10px;
}

body.dark-mode .mobile-controls {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ========== HERO SECTION ========== */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  padding: 60px 0 40px;
  position: relative;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.dark-mode .hero h1 {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 600px;
}

body.dark-mode .hero-subtitle {
  color: var(--muted-dark);
}

.cta {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ========== HERO VISUAL CARD ========== */
.hero-visual {
  flex: 0 0 400px;
  min-width: 300px;
  background: linear-gradient(145deg, var(--accent-soft), #ffffff);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

body.dark-mode .hero-visual {
  background: linear-gradient(145deg, var(--accent-soft-dark), #1e293b);
  box-shadow: var(--shadow-dark);
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.visual-content {
  position: relative;
  z-index: 1;
}

.visual-title {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.dark-mode .visual-title {
  color: #a5b4fc;
}

/* ========== FEATURE LIST ========== */
.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

body.dark-mode .feature-list li {
  color: var(--muted-dark);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--accent);
  font-size: 14px;
  background: var(--accent-soft);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .feature-list i {
  background: rgba(79, 70, 229, 0.2);
  color: #a5b4fc;
}

/* ========== SECTION TITLE ========== */
.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #7c3aed);
  border-radius: 2px;
}

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79, 70, 229, 0.05);
  height: 100%;
}

body.dark-mode .feature-card {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
  border-color: rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
}

body.dark-mode .feature-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ========== FEATURE ICON ========== */
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 24px;
}

body.dark-mode .feature-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(30, 41, 59, 0.5));
  color: #a5b4fc;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

body.dark-mode .feature-card h3 {
  color: var(--text-dark);
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

body.dark-mode .feature-card p {
  color: var(--muted-dark);
}

/* ========== WHY SECTION ========== */
.why-section {
  margin-top: 80px;
  padding: 60px 0;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: var(--border-radius);
}

body.dark-mode .why-section {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(15, 23, 42, 0) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

body.dark-mode .why-card {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.why-card:hover {
  transform: scale(1.03);
}

.why-card i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 20px;
  background: var(--accent-soft);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .why-card i {
  background: rgba(79, 70, 229, 0.2);
  color: #a5b4fc;
}

/* ========== SECTION SUBTITLE ========== */
.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

body.dark-mode .section-subtitle {
  color: var(--muted-dark);
}

/* ========== BUTTON SATU SEHAT ========== */
.btn-satusehat {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  background: linear-gradient(135deg, #1a73e8, #0d47a1);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
  margin-top: 10px;
}

.btn-satusehat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
}

.satusehat-logo {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  color: #1a73e8;
}

/* ========== SATU SEHAT BADGE ========== */
.satusehat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 16px;
  background: rgba(26, 115, 232, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(26, 115, 232, 0.2);
}

body.dark-mode .satusehat-badge {
  background: rgba(26, 115, 232, 0.15);
  border-color: rgba(26, 115, 232, 0.3);
}

/* ========== GRID SECTION (PROBLEM, SOLUTION, IMPACT, SERVICE) ========== */
.problem-grid, .solution-grid, .impact-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.problem-card, .solution-card, .impact-card, .service-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(79, 70, 229, 0.05);
}

body.dark-mode .problem-card,
body.dark-mode .solution-card,
body.dark-mode .impact-card,
body.dark-mode .service-card {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
  border-color: rgba(255, 255, 255, 0.05);
}

.problem-card:hover,
.solution-card:hover,
.impact-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
}

/* ========== SOLUTION CARD ========== */
.solution-card {
  text-align: center;
}

.solution-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-soft), #ffffff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  font-size: 24px;
}

body.dark-mode .solution-icon {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(30, 41, 59, 0.5));
  color: #a5b4fc;
}

/* ========== CONTACT SECTION (MAIN) ========== */
.contact-section {
  margin-top: 80px;
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(145deg, var(--card-bg), var(--accent-soft));
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

body.dark-mode .contact-section {
  background: linear-gradient(145deg, var(--card-bg-dark), rgba(79, 70, 229, 0.1));
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: rgba(79, 70, 229, 0.05);
  border-radius: 50%;
  transform: translate(100px, -100px);
}

.contact-title {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.contact-subtitle {
  color: var(--muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

body.dark-mode .contact-subtitle {
  color: var(--muted-dark);
}

/* ========== FOOTER WAVE ========== */
.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  z-index: 1;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ========== RESPONSIVE (MAIN) ========== */
@media (max-width: 768px) {
  nav, .lang-switcher, .dark-mode-toggle {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-wrap {
    padding: 12px 16px;
  }
  
  .nav-right {
    gap: 10px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-visual {
    flex: 1;
    min-width: 100%;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .contact-title {
    font-size: 28px;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .mobile-controls {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-controls {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }
  
  .cta {
    flex-direction: column;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

#mobileLangSwitcher,
#mobileDarkModeToggle {
  display: flex !important;
  visibility: visible !important;
}

.mobile-controls {
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
}

/* ========== RESPONSIVE NAVIGASI BARU ========== */
@media (max-width: 1024px) {
  nav {
    gap: 15px;
  }
  
  nav a {
    font-size: 13px;
  }
}

@media (max-width: 880px) {
  nav, .dark-mode-toggle {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
}

@media (min-width: 881px) {
  .mobile-menu, .mobile-controls {
    display: none !important;
  }
}

/* ========== HIDE LANGUAGE BUTTONS ========== */
.lang-switcher, .lang-btn {
  display: none !important;
}

/* ========== MODAL CONTACT (MAIN) ========== */
.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.contact-modal.active {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  position: relative;
}

body.dark-mode .modal-content {
  background: var(--card-bg-dark);
  box-shadow: var(--shadow-dark);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--accent);
}

